.liquid-glass-button {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  cursor: pointer;
  
  /* Основные тени для объема */
  box-shadow: 
    0 15px 25px rgba(0, 0, 0, 0.3),
    0 5px 10px rgba(0, 0, 0, 0.2),
    inset 0 -2px 5px rgba(255, 255, 255, 0.3),  /* Уменьшено с 0.3 до 0.2 */
    inset 0 2px 5px rgba(255, 255, 255, 0.5);   /* Уменьшено с 0.5 до 0.3 */
  
  transition: all 0.3s ease;
}

.liquid-glass-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

/* Основной жидкий блик - сделал значительно прозрачнее */
.liquid-glass-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.05) 40%,  /* Было 0.3, стало 0.15 */
    rgba(255, 255, 255, 0.10) 50%,  /* Было 0.5, стало 0.25 */
    rgba(255, 255, 255, 0.05) 60%,  /* Было 0.3, стало 0.15 */
    transparent 70%
  );
  transform: rotate(25deg);
  animation: liquidFlow 6s infinite linear;
  pointer-events: none;
}

/* Второй слой блика (создает глубину) - тоже прозрачнее */
.liquid-glass-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.1) 0%,    /* Было 0.4, стало 0.2 */
    transparent 70%                  /* Было 60%, стало 70% для более плавного перехода */
  );
  border-radius: 40px;
  pointer-events: none;
}

/* Анимация движения "жидкости" */
@keyframes liquidFlow {
  0% {
    transform: rotate(25deg) translateX(-10%) translateY(-10%);
  }
  25% {
    transform: rotate(25deg) translateX(0%) translateY(0%);
  }
  50% {
    transform: rotate(25deg) translateX(10%) translateY(10%);
  }
  75% {
    transform: rotate(25deg) translateX(0%) translateY(0%);
  }
  100% {
    transform: rotate(25deg) translateX(-10%) translateY(-10%);
  }
}

/* Эффект при наведении */
.liquid-glass-button:hover {
  box-shadow: 
    0 20px 30px rgba(0, 0, 0, 0.4),
    0 8px 15px rgba(0, 0, 0, 0.3),
    inset 0 -3px 8px rgba(255, 255, 255, 0.25), /* Уменьшено */
    inset 0 3px 8px rgba(255, 255, 255, 0.35);  /* Уменьшено */
}

.liquid-glass-button:hover img {
  transform: scale(1.05);
}

.liquid-glass-button:hover::before {
  animation-duration: 4s;
}

/* Эффект при нажатии */
.liquid-glass-button:active {
  transform: scale(0.98);
  box-shadow: 
    0 5px 15px rgba(0, 0, 0, 0.3),
    inset 0 -5px 10px rgba(255, 255, 255, 0.1), /* Уменьшено */
    inset 0 5px 15px rgba(255, 255, 255, 0.2);  /* Уменьшено */
}